home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d8 / t3script.arc / TOWERNET.SLT < prev    next >
Text File  |  1990-04-14  |  3KB  |  89 lines

  1. /////////////////////////////////////////////////////////////////////////
  2. //           TOWERNET.SLT  -  by Terry Robertson (October 1988)        //
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
  4. //                                                                     //
  5. //    SCRIPT TO LOG-ON TO A TOWER-NET SYSTEM.                          //
  6. //                                                                     //
  7. //    Please note that this script expects you to have assigned your   //
  8. //    FULL NAME to function key F4. The easiest way to do this is by   //
  9. //    using the FKEY script in this collection.                        //
  10. //                                                                     //
  11. //    In addition, the script is written so that it will abort if you  //
  12. //    have not completed the relevant PASSWORD entry in the Dialling   //
  13. //    Directory.                                                       //
  14. //                                                                     //
  15. //    I have assumed that you want to use the linked scripts CONNECT   //
  16. //    and CAPTURE. If you do not have these or prefer not to use       //
  17. //    them you should "comment out" the two lines starting "call"      //
  18. //    by simply putting "//" before the word "call".                   //
  19. //                                                                     //
  20. /////////////////////////////////////////////////////////////////////////
  21.  
  22.  
  23. str s[30];
  24.  
  25.  
  26.  
  27. main()
  28.  
  29. {
  30.  
  31.  int stat;
  32.  int t1,
  33.      t2,
  34.      t3;
  35.  int tmark;
  36.  
  37.  alarm (1);
  38.  call("connect", 1);                    // Gives "connect" information by
  39.                                         // calling Connect.slc script
  40.  call("capture", 1);                    // Opens new capture file by calling
  41.                                         // Capture.slc script
  42.  
  43.  if (not _entry_pass)                   // no pass, so didn't recog. board
  44.   {
  45.    prints ("Sorry, I don't know the password for this BBS!");
  46.    return;
  47.   }
  48.  
  49.  t1 = track ("(Y/N):", 1);
  50.  t2 = track ("YOUR NAME:", 1);
  51.  t3 = track ("PASSWORD:", 1);
  52.  
  53.  tmark = timer_start (1800);            // wait up to 3 minutes for login
  54.  
  55.                                         // answer any logon questions
  56.  while (not time_up (tmark))
  57.   {
  58.    terminal();                          // let Telix process any chars and keys
  59.  
  60.    stat = track_hit (0);                // see which (if any) track was hit
  61.  
  62.    if (stat == t1)
  63.     {
  64.      cputs ("y");                       // send affirmative
  65.      cputs ("^M");
  66.     }
  67.    else if (stat == t2)                 
  68.     {
  69.      keyget(0x3e00, 0, s);
  70.      delchrs(s, strlen(s) - 2, strlen(s));
  71.      cputs(s);
  72.      cputs ("^M");
  73.     }
  74.    else if (stat == t3)                 
  75.     {
  76.      cputs (_entry_pass);               // send password
  77.      cputs ("^M");
  78.      break;                             // done with logon
  79.     }
  80.  }
  81.  
  82.   if (time_up (tmark))
  83.   prints ("Logon failed!");
  84.  
  85.   timer_free (tmark);                    // free timer channel
  86.   track_free (0);                        // and all track channels
  87.  
  88. }
  89.